home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 August: Tool Chest / Dev.CD Aug 98 TC.toast / Tool Chest / Testing & Debugging / Mac OS Development Toolkit / Automation Essentials 2.3.0 / Host Automation Folder / VU External Tool libs / OnTarget.lib < prev    next >
Encoding:
Text File  |  1998-03-19  |  1.6 KB  |  48 lines  |  [TEXT/MPS ]

  1. #
  2. # ****************************************************************************
  3. #
  4. #    File Name:        OnTarget.Lib
  5. #
  6. #    Contains:    xxx put contents here xxx
  7. #
  8. #    Written by:    KTA, KL, ML, GS et al
  9. #
  10. #    Copyright:    © 1993-1997 by Apple Computer, Inc., all rights reserved.
  11. #
  12. # ****************************************************************************
  13. #            C h a n g e        H i s t o r y (most recent first):
  14. # ****************************************************************************
  15. #
  16. #        Vers      Date        Author        Description
  17. #        ----    --------    ------    ---------------------------------------------
  18. #        1.2.1    02/05/97    JAS        Added 'vers' resources to library.
  19. #                                    These should always match tool version when tool is revved.
  20. #        <2>        02/05/97    JAS        Added standard services.
  21. #        <1+>     5/21/93    NAGA        Adding header and porting old files to follow new standards
  22. #
  23. # ****************************************************************************
  24. #
  25.  
  26. tool OnTarget s:'GILS'
  27. begin
  28.     Service "BitDepth"() return 'integer';
  29.     Service "MonitorCount"() return 'integer';
  30.     Service "ColorCheck"( 'integer' ) return  'symbol';
  31.     Service "SetColor"( 'integer' ) return  'symbol';
  32.     Service "CacheTest"() return 'integer';
  33.     Service "FileShare"() return 'integer';
  34.     Service "DiskSpace"() return 'list';
  35.     Service "GDelete"('integer', 'string');
  36.  
  37.     
  38.     # Services common to all Virtual User external tools:
  39.     Service "Initialize"( 'undefined' ); # pass TRUE for target, FALSE for host
  40.     Service "Cancel"( 'string' );
  41.     Service "GetToolServices"() return 'list';
  42.     Service "GetToolVersion"() return 'list';
  43.     Service "ServiceSupported"( 'string' ) return 'undefined';
  44.     Service "Quit"();
  45.  
  46. end;
  47.  
  48.